Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DNM] testing cmd #6826

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft

[DNM] testing cmd #6826

wants to merge 7 commits into from

Conversation

mordamax
Copy link
Contributor

@mordamax mordamax commented Dec 10, 2024

123

@mordamax
Copy link
Contributor Author

/cmd bench --runtime westend --pallet pallet_balances

@mordamax
Copy link
Contributor Author

/cmd prdoc

Copy link

Command "bench --runtime westend --pallet pallet_balances" has started 🚀 See logs here

@mordamax
Copy link
Contributor Author

/cmd bench --help

Copy link

Command help:
usage: /cmd bench [-h] [--quiet] [--clean] [--image IMAGE]
                  [--runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]]
                  [--pallet [PALLET ...]] [--fail-fast]

options:
  -h, --help            show this help message and exit
  --quiet               Won't print start/end/failed messages in PR
  --clean               Clean up the previous bot's & author's comments in PR
  --image IMAGE         Override docker image '--image
                        docker.io/paritytech/ci-unified:latest'
  --runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]
                        Runtime(s) space separated
  --pallet [PALLET ...]
                        Pallet(s) space separated
  --fail-fast           Fail fast on first failed benchmark

**Examples**:
 Runs all benchmarks
 /cmd bench

 Runs benchmarks for pallet_balances and pallet_multisig for all runtimes which have these pallets. **--quiet** makes it to output nothing to PR but reactions
 /cmd bench --pallet pallet_balances pallet_xcm_benchmarks::generic --quiet

 Runs bench for all pallets for westend runtime and fails fast on first failed benchmark
 /cmd bench --runtime westend --fail-fast

 Does not output anything and cleans up the previous bot's & author command triggering comments in PR
 /cmd bench --runtime westend rococo --pallet pallet_balances pallet_multisig --quiet --clean

@mordamax
Copy link
Contributor Author

/cmd --help

Copy link

Command help:
usage: /cmd  [--help] [--quiet] [--clean] [--image IMAGE]
             {bench,bench-omni,fmt,update-ui,prdoc} ...

A command runner for polkadot-sdk repo

positional arguments:
  {bench,bench-omni,fmt,update-ui,prdoc}
                        a command to run
    bench               Runs benchmarks (old CLI)
    bench-omni          Runs benchmarks (frame omni bencher)
    fmt                 Formats code (cargo +nightly-VERSION fmt) and configs
                        (taplo format)
    update-ui           Updates UI tests
    prdoc               Generates PR documentation

options:
  --help                help for help if you need some help
  --quiet               Won't print start/end/failed messages in PR
  --clean               Clean up the previous bot's & author's comments in PR
  --image IMAGE         Override docker image '--image
                        docker.io/paritytech/ci-unified:latest'

### Command 'bench'
usage: /cmd bench [-h] [--quiet] [--clean] [--image IMAGE]
                  [--runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]]
                  [--pallet [PALLET ...]] [--fail-fast]

options:
  -h, --help            show this help message and exit
  --quiet               Won't print start/end/failed messages in PR
  --clean               Clean up the previous bot's & author's comments in PR
  --image IMAGE         Override docker image '--image
                        docker.io/paritytech/ci-unified:latest'
  --runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]
                        Runtime(s) space separated
  --pallet [PALLET ...]
                        Pallet(s) space separated
  --fail-fast           Fail fast on first failed benchmark

**Examples**:
 Runs all benchmarks
 /cmd bench

 Runs benchmarks for pallet_balances and pallet_multisig for all runtimes which have these pallets. **--quiet** makes it to output nothing to PR but reactions
 /cmd bench --pallet pallet_balances pallet_xcm_benchmarks::generic --quiet

 Runs bench for all pallets for westend runtime and fails fast on first failed benchmark
 /cmd bench --runtime westend --fail-fast

 Does not output anything and cleans up the previous bot's & author command triggering comments in PR
 /cmd bench --runtime westend rococo --pallet pallet_balances pallet_multisig --quiet --clean


### Command 'bench-omni'
usage: /cmd bench-omni [-h] [--quiet] [--clean] [--image IMAGE]
                       [--runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]]
                       [--pallet [PALLET ...]] [--fail-fast]

options:
  -h, --help            show this help message and exit
  --quiet               Won't print start/end/failed messages in PR
  --clean               Clean up the previous bot's & author's comments in PR
  --image IMAGE         Override docker image '--image
                        docker.io/paritytech/ci-unified:latest'
  --runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]
                        Runtime(s) space separated
  --pallet [PALLET ...]
                        Pallet(s) space separated
  --fail-fast           Fail fast on first failed benchmark

**Examples**:
 Runs all benchmarks 
 /cmd bench-omni

 Runs benchmarks for pallet_balances and pallet_multisig for all runtimes which have these pallets. **--quiet** makes it to output nothing to PR but reactions
 /cmd bench-omni --pallet pallet_balances pallet_xcm_benchmarks::generic --quiet
 
 Runs bench for all pallets for westend runtime and fails fast on first failed benchmark
 /cmd bench-omni --runtime westend --fail-fast
 
 Does not output anything and cleans up the previous bot's & author command triggering comments in PR 
 /cmd bench-omni --runtime westend rococo --pallet pallet_balances pallet_multisig --quiet --clean


### Command 'fmt'
usage: /cmd fmt [-h] [--quiet] [--clean] [--image IMAGE]

options:
  -h, --help     show this help message and exit
  --quiet        Won't print start/end/failed messages in PR
  --clean        Clean up the previous bot's & author's comments in PR
  --image IMAGE  Override docker image '--image docker.io/paritytech/ci-
                 unified:latest'


### Command 'update-ui'
usage: /cmd update-ui [-h] [--quiet] [--clean] [--image IMAGE]

options:
  -h, --help     show this help message and exit
  --quiet        Won't print start/end/failed messages in PR
  --clean        Clean up the previous bot's & author's comments in PR
  --image IMAGE  Override docker image '--image docker.io/paritytech/ci-
                 unified:latest'


### Command 'prdoc'
usage: /cmd prdoc [-h] [--pr PR]
                  [--audience [{runtime_dev,runtime_user,node_dev,node_operator} ...]]
                  [--bump {patch,minor,major,silent,ignore,no_change}]
                  [--force]

options:
  -h, --help            show this help message and exit
  --pr PR               The PR number to generate the PrDoc for.
  --audience [{runtime_dev,runtime_user,node_dev,node_operator} ...]
                        The audience of whom the changes may concern. Example:
                        --audience runtime_dev node_dev
  --bump {patch,minor,major,silent,ignore,no_change}
                        A default bump level for all crates. Example: --bump
                        patch
  --force               Whether to overwrite any existing PrDoc.

Copy link

Command "bench --runtime westend --pallet pallet_balances" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_balances']

@mordamax
Copy link
Contributor Author

/cmd bench --runtime westend --pallet pallet_balances

@mordamax
Copy link
Contributor Author

/cmd bench-omni --runtime westend --pallet pallet_balances

Copy link

Command "bench --runtime westend --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench-omni --runtime westend --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench-omni --runtime westend --pallet pallet_balances" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
polkadot/runtime/westend/src/weights/pallet_balances.rs burn_keep_alive 21.76us 27.92us +28.30
polkadot/runtime/westend/src/weights/pallet_balances.rs burn_allow_death 32.25us 40.81us +26.54
polkadot/runtime/westend/src/weights/pallet_balances.rs force_adjust_total_issuance 7.25us 8.83us +21.90
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_all 176.42us 189.65us +7.50
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_allow_death 177.84us 190.53us +7.13
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_keep_alive 166.41us 177.01us +6.37
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_balances']

Copy link

Command "bench --runtime westend --pallet pallet_balances" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_balances']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_xcm

Copy link

Command "bench --pallet pallet_xcm" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_xcm" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_xcm']
-- rococo: ['pallet_xcm']
-- asset-hub-westend: ['pallet_xcm']
-- asset-hub-rococo: ['pallet_xcm']
-- bridge-hub-rococo: ['pallet_xcm']
-- bridge-hub-westend: ['pallet_xcm']
-- collectives-westend: ['pallet_xcm']
-- coretime-rococo: ['pallet_xcm']
-- coretime-westend: ['pallet_xcm']
-- people-rococo: ['pallet_xcm']
-- people-westend: ['pallet_xcm']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_xcm

Copy link

Command "bench --pallet pallet_xcm" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_xcm" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
substrate/frame/revive/src/weights.rs seal_clear_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_clear_transient_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_contains_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_contains_transient_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_deposit_event - - ERROR
substrate/frame/revive/src/weights.rs seal_get_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_get_transient_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_set_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_set_transient_storage - - ERROR
substrate/frame/revive/src/weights.rs seal_take_storage - - ERROR
polkadot/runtime/westend/src/weights/pallet_balances.rs burn_keep_alive 21.76us 27.92us +28.30
polkadot/runtime/westend/src/weights/pallet_balances.rs burn_allow_death 32.25us 40.81us +26.54
polkadot/runtime/westend/src/weights/pallet_balances.rs force_adjust_total_issuance 7.25us 8.83us +21.90
substrate/frame/revive/src/weights.rs seal_call_data_load 297.00ns 322.00ns +8.42
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_all 176.42us 189.65us +7.50
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_allow_death 177.84us 190.53us +7.13
polkadot/runtime/westend/src/weights/pallet_balances.rs transfer_keep_alive 166.41us 177.01us +6.37
substrate/frame/revive/src/weights.rs seal_value_transferred 305.00ns 323.00ns +5.90
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.63us 2.77us +5.29
substrate/frame/revive/src/weights.rs get_transient_storage_full 1.85us 1.73us -6.38
substrate/frame/revive/src/weights.rs seal_caller 373.00ns 349.00ns -6.43
substrate/frame/revive/src/weights.rs seal_block_number 325.00ns 304.00ns -6.46
substrate/frame/revive/src/weights.rs rollback_transient_storage 1.32us 1.24us -6.49
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.80us 2.61us -6.71
substrate/frame/revive/src/weights.rs seal_weight_to_fee 1.52us 1.39us -8.57
substrate/frame/revive/src/weights.rs seal_minimum_balance 303.00ns 275.00ns -9.24
substrate/frame/revive/src/weights.rs seal_caller_is_root 327.00ns 296.00ns -9.48
substrate/frame/revive/src/weights.rs seal_now 328.00ns 294.00ns -10.37
substrate/frame/revive/src/weights.rs seal_return 62.36us 55.84us -10.44
substrate/frame/revive/src/weights.rs seal_origin 329.00ns 293.00ns -10.94
substrate/frame/revive/src/weights.rs seal_return_data_size 304.00ns 268.00ns -11.84
substrate/frame/revive/src/weights.rs seal_call_data_size 309.00ns 271.00ns -12.30
substrate/frame/revive/src/weights.rs seal_copy_to_contract 62.23us 54.40us -12.59
substrate/frame/revive/src/weights.rs seal_own_code_hash 360.00ns 309.00ns -14.17
substrate/frame/revive/src/weights.rs seal_address 359.00ns 304.00ns -15.32
substrate/frame/revive/src/weights.rs seal_ref_time_left 328.00ns 265.00ns -19.21
substrate/frame/revive/src/weights.rs seal_call_data_copy 39.54us 29.91us -24.35
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_xcm']
-- rococo: ['pallet_xcm']
-- asset-hub-westend: ['pallet_xcm']
-- asset-hub-rococo: ['pallet_xcm']
-- bridge-hub-rococo: ['pallet_xcm']
-- bridge-hub-westend: ['pallet_xcm']
-- collectives-westend: ['pallet_xcm']
-- coretime-rococo: ['pallet_xcm']
-- coretime-westend: ['pallet_xcm']
-- people-rococo: ['pallet_xcm']
-- people-westend: ['pallet_xcm']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_balances

Copy link

Command "bench --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_balances" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- dev: ['pallet_balances']
-- westend: ['pallet_balances']
-- rococo: ['pallet_balances']
-- asset-hub-westend: ['pallet_balances']
-- asset-hub-rococo: ['pallet_balances']
-- bridge-hub-rococo: ['pallet_balances']
-- bridge-hub-westend: ['pallet_balances']
-- collectives-westend: ['pallet_balances']
-- coretime-rococo: ['pallet_balances']
-- coretime-westend: ['pallet_balances']
-- people-rococo: ['pallet_balances']
-- people-westend: ['pallet_balances']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_balances

Copy link

Command "bench --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_balances" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- dev: ['pallet_balances']
-- westend: ['pallet_balances']
-- rococo: ['pallet_balances']
-- asset-hub-westend: ['pallet_balances']
-- asset-hub-rococo: ['pallet_balances']
-- bridge-hub-rococo: ['pallet_balances']
-- bridge-hub-westend: ['pallet_balances']
-- collectives-westend: ['pallet_balances']
-- coretime-rococo: ['pallet_balances']
-- coretime-westend: ['pallet_balances']
-- people-rococo: ['pallet_balances']
-- people-westend: ['pallet_balances']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_balances

Copy link

Command "bench --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_balances" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- dev: ['pallet_balances']
-- westend: ['pallet_balances']
-- rococo: ['pallet_balances']
-- asset-hub-westend: ['pallet_balances']
-- asset-hub-rococo: ['pallet_balances']
-- bridge-hub-rococo: ['pallet_balances']
-- bridge-hub-westend: ['pallet_balances']
-- collectives-westend: ['pallet_balances']
-- coretime-rococo: ['pallet_balances']
-- coretime-westend: ['pallet_balances']
-- people-rococo: ['pallet_balances']
-- people-westend: ['pallet_balances']

@mordamax
Copy link
Contributor Author

/cmd bench --pallet pallet_balances

Copy link

Command "bench --pallet pallet_balances" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_balances" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- dev: ['pallet_balances']
-- westend: ['pallet_balances']
-- rococo: ['pallet_balances']
-- asset-hub-westend: ['pallet_balances']
-- asset-hub-rococo: ['pallet_balances']
-- bridge-hub-rococo: ['pallet_balances']
-- bridge-hub-westend: ['pallet_balances']
-- collectives-westend: ['pallet_balances']
-- coretime-rococo: ['pallet_balances']
-- coretime-westend: ['pallet_balances']
-- people-rococo: ['pallet_balances']
-- people-westend: ['pallet_balances']

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant